home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d13 / stistics.arc / PAIRED-T.DOC < prev    next >
Text File  |  1988-07-24  |  2KB  |  50 lines

  1.                                PAIRED T-TEST
  2.  
  3. AIM:  This is the standard T-test which is to be applied to two samples  of 
  4. data  obtained  from  the same subject.  For example, two  drugs  might  be 
  5. applied  on different occasions to a group of patients.  Each patient  will 
  6. then  provide  a  measurement  of  response to drug  A  and  drug  B.   The 
  7. variability due to differences between patients is thus eliminated, and one 
  8. considers  only the difference in response to the two drugs on the part  of 
  9. each patient.
  10.  
  11. Note  that  there  must be equal numbers for treatment A and  B.   This  is 
  12. obvious, and indeed, the program prompts for equal numbers.
  13.  
  14. EXAMPLE:  Two drugs were tested in 8 patients for their ability to slow the 
  15. heart.  The data is as follows:
  16.  
  17.                                    --Heart Rate Change---
  18.  
  19.                   PATIENT          DRUG A          DRUG B
  20.  
  21.                      1               -22             -14
  22.                      2               -14             -12
  23.                      3               -36             -22
  24.                      4               -28             -30
  25.                      5               - 8             +10
  26.                      6               -22               0
  27.                      7               - 8             - 8
  28.                      8               + 2             +24
  29.  
  30. The  data can be input via a WordStar non-document file, as follows:
  31.  
  32.        Sample data from GoldStein     <-- Title, up to 65 characters
  33.                  -22  -14                       <-- Pair 1
  34.                  -14  -12                       <-- Pair 2
  35.                  -36  -22                       <-- Pair 3
  36.                  -28  -30                       .
  37.                  -8    10                       .
  38.                  -22   0                        .
  39.                  -8   -8                        .
  40.                  2     24                       <-- Last pair
  41.  
  42. REFERENCE:  Goldstein,  A.   1964   Biostatistics:  An  Introductory  Text.  
  43.             Macmillan Company, New York.  Pages 59-61.
  44.  
  45. FORTRAN VERSION: Dr. Stanley Kaplan  May 65
  46. BASIC VERSION:   Dr. Stanley Kaplan  Jul 81
  47. PASCAL VERSION:  Dr. Stanley Kaplan  Aug 85
  48. UPDATES:                             Oct 86 (Version 2.00)
  49.                                      Feb 87 (Version 2.10)
  50.                                      Feb 88 (MS-DOS, Version 2.2)